home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
SGI Developer Toolbox 6.1
/
SGI Developer Toolbox 6.1 - Disc 4.iso
/
src
/
demos
/
GL
/
ideas
/
Makefile
< prev
next >
Wrap
Makefile
|
1994-08-01
|
498b
|
22 lines
#!smake
#
#
include ${ROOT}/usr/include/make/commondefs
# Libraries to link with to get the GL (-lsun is necessary for correct
# remote graphics operation when running NIS).
TARGETS = ideas
LLDLIBS = -lgl -lm
CFILES = a.c b.c d.c e.c f.c h.c i.c m.c n.c o.c p.c r.c s.c t.c w.c \
draw_holder.c draw_lamp.c draw_logo.c draw_logo_line.c \
draw_logo_shadow.c track.c
HFILES = objects.h
default all: $(TARGETS)
include ${COMMONRULES}
${TARGETS}: ${OBJECTS}
${CCF} -o $@ ${OBJECTS} ${LDFLAGS}